Inderpreet Pabla Apps

Database Access 1.0
----------------IMPORTANT: YOU MUST HAVE WEB-SERVICE EXTENSION (Server Side PHPScripts) IN ORDER FOR IT TO WORK.Link:https://github.com/InderPabla/Projects/tree/master/Android%20Database%20Web%20Service%20Extension---All code is open source-------------------User can access their database and do multiple operations.- User can access any database.- User can access any table within that database.- User can perform various operations on that table.- Table operations include:- Check Column: User can check column types of the table.- Insert: User can insert data into the table.- Search: User can query search table and get queriedinformation.
Particle Physics 1.0
Quick Description:Simple particle physics game (my first game). Particlesgetattracted towards the gravity well and collide fluently withblocksaround its environment.- Particles can be created by dragging your finger acrossthescreen.- Gravity wells can be created by double tapping the screen.- Blow up all the particles by long pressing the screen.- Swipe the screen up or down to pause.- Swipe the screen right or left to slow the particles down.Future:This app will be later upgrade to provide 3D particlecollision.Some Physics Background:Each of the particles simply have their x and y velocities andamass of 1 unit. The gravity wells attraction is calculatedusinginverse root of the velocities of each particle using oneround ofNewton’s method. The velocity vectors are then convertedback intotheir x and y components.